home *** CD-ROM | disk | FTP | other *** search
- // vbitsvw.h : interface of the CVbits16View class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CVbits16View : public CEditView
- {
- protected: // create from serialization only
- CVbits16View();
- DECLARE_DYNCREATE(CVbits16View)
-
- // Attributes
- public:
- CVbits16Doc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CVbits16View();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Printing support
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CVbits16View)
- afx_msg void OnViewNewdialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in vbitsvw.cpp
- inline CVbits16Doc* CVbits16View::GetDocument()
- { return (CVbits16Doc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-